crypto/tls.clientHandshakeStateTLS13.suite (field)

30 uses

	crypto/tls (current package)
		handshake_client_tls13.go#L33: 	suite         *cipherSuiteTLS13
		handshake_client_tls13.go#L64: 	hs.transcript = hs.suite.hash.New()
		handshake_client_tls13.go#L159: 	if hs.suite != nil && selectedSuite != hs.suite {
		handshake_client_tls13.go#L167: 	hs.suite = selectedSuite
		handshake_client_tls13.go#L168: 	c.cipherSuite = hs.suite.id
		handshake_client_tls13.go#L258: 		if pskSuite.hash == hs.suite.hash {
		handshake_client_tls13.go#L263: 			transcript := hs.suite.hash.New()
		handshake_client_tls13.go#L274: 			pskBinders := [][]byte{hs.suite.finishedHash(hs.binderKey, transcript)}
		handshake_client_tls13.go#L357: 	if pskSuite.hash != hs.suite.hash {
		handshake_client_tls13.go#L388: 		earlySecret = hs.suite.extract(nil, nil)
		handshake_client_tls13.go#L391: 	handshakeSecret := hs.suite.extract(sharedKey,
		handshake_client_tls13.go#L392: 		hs.suite.deriveSecret(earlySecret, "derived", nil))
		handshake_client_tls13.go#L394: 	clientSecret := hs.suite.deriveSecret(handshakeSecret,
		handshake_client_tls13.go#L396: 	c.out.setTrafficSecret(hs.suite, QUICEncryptionLevelHandshake, clientSecret)
		handshake_client_tls13.go#L397: 	serverSecret := hs.suite.deriveSecret(handshakeSecret,
		handshake_client_tls13.go#L399: 	c.in.setTrafficSecret(hs.suite, QUICEncryptionLevelHandshake, serverSecret)
		handshake_client_tls13.go#L405: 		c.quicSetWriteSecret(QUICEncryptionLevelHandshake, hs.suite.id, clientSecret)
		handshake_client_tls13.go#L406: 		c.quicSetReadSecret(QUICEncryptionLevelHandshake, hs.suite.id, serverSecret)
		handshake_client_tls13.go#L420: 	hs.masterSecret = hs.suite.extract(nil,
		handshake_client_tls13.go#L421: 		hs.suite.deriveSecret(handshakeSecret, "derived", nil))
		handshake_client_tls13.go#L593: 	expectedMAC := hs.suite.finishedHash(c.in.trafficSecret, hs.transcript)
		handshake_client_tls13.go#L605: 	hs.trafficSecret = hs.suite.deriveSecret(hs.masterSecret,
		handshake_client_tls13.go#L607: 	serverSecret := hs.suite.deriveSecret(hs.masterSecret,
		handshake_client_tls13.go#L609: 	c.in.setTrafficSecret(hs.suite, QUICEncryptionLevelApplication, serverSecret)
		handshake_client_tls13.go#L622: 	c.ekm = hs.suite.exportKeyingMaterial(hs.masterSecret, hs.transcript)
		handshake_client_tls13.go#L698: 		verifyData: hs.suite.finishedHash(c.out.trafficSecret, hs.transcript),
		handshake_client_tls13.go#L705: 	c.out.setTrafficSecret(hs.suite, QUICEncryptionLevelApplication, hs.trafficSecret)
		handshake_client_tls13.go#L708: 		c.resumptionSecret = hs.suite.deriveSecret(hs.masterSecret,
		handshake_client_tls13.go#L716: 		c.quicSetWriteSecret(QUICEncryptionLevelApplication, hs.suite.id, hs.trafficSecret)